home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
BBS in a Box 3
/
BBS in a box - Trilogy III.iso
/
Files
/
Prog
/
B-C
/
C++Source Code Fmtr Folder
/
Src
/
cdent.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1992-04-27
|
340 b
|
22 lines
|
[
TEXT/MPS
]
#ifndef __CDENT__
#define __CDENT__ 1
/*
** Severity levels for the diag function
*/
enum Severity {
kDebug //
, kProgress //
, kDiagnostic //
, kFatal //
};
extern Severity gDiagLevel; // Report at this level or above
extern void diag(Severity, const char *, ...); // Report errors
#endif